home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ssl-cert.postrm < prev    next >
Text File  |  2008-10-11  |  538b  |  21 lines

  1. #!/bin/sh -e
  2.  
  3. # We're being removed; change this back
  4. chgrp root /etc/ssl/private
  5. chmod g-x /etc/ssl/private
  6.  
  7. if [ "$1" = purge ] ; then
  8.     rm -f /etc/ssl/certs/ssl-cert-snakeoil.pem \
  9.           /etc/ssl/certs/ssl-cert-snakeoil.pem.broken \
  10.               /etc/ssl/private/ssl-cert-snakeoil.key \
  11.           /etc/ssl/private/ssl-cert-snakeoil.key.broken
  12. fi
  13.  
  14. # Automatically added by dh_installdebconf
  15. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  16.     . /usr/share/debconf/confmodule
  17.     db_purge
  18. fi
  19. # End automatically added section
  20.  
  21.